home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Online / Socks5 / src / server / msgids.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-10  |  1.6 KB  |  50 lines

  1. /* Copyright (c) 1995-1999 NEC USA, Inc.  All rights reserved.               */
  2. /*                                                                           */
  3. /* The redistribution, use and modification in source or binary forms of     */
  4. /* this software is subject to the conditions set forth in the copyright     */
  5. /* document ("Copyright") included with this distribution.                   */
  6.  
  7. /*
  8.  * $Id: msgids.h,v 1.3.4.1 1999/02/03 22:35:37 steve Exp $
  9.  */
  10.  
  11. #ifndef __MSGIDS_H
  12. #define __MSGIDS_H
  13.  
  14. #define MSGID_SERVER_START              1
  15. #define MSGID_SERVER_RESTART            2
  16. #define MSGID_SERVER_STOP               3
  17.  
  18. #define MSGID_SERVER_SOCKS_BIND         4
  19. #define MSGID_SERVER_SOCKS_ACCEPT       5
  20.  
  21. #define MSGID_SERVER_CONF_BADLINE       6
  22.  
  23. #define MSGID_SERVER_AUTH_BAD           7
  24. #define MSGID_SERVER_AUTH_NONE          8
  25. #define MSGID_SERVER_AUTH_FAILED        9
  26.  
  27. #define MSGID_SERVER_WRONG_ROUTE        10
  28. #define MSGID_SERVER_BANNED_HOST        11
  29. #define MSGID_SERVER_BAD_VERSION        12
  30. #define MSGID_SERVER_RECV_VERSION       13
  31. #define MSGID_SERVER_BAD_COMMAND        14
  32.  
  33. #define MSGID_SERVER_TCP_START          15
  34. #define MSGID_SERVER_TCP_ESTAB          16
  35. #define MSGID_SERVER_TCP_END            17
  36. #define MSGID_SERVER_TCP_AUTH           18
  37. #define MSGID_SERVER_TCP_ACCEPT_AUTH    19
  38.  
  39. #define MSGID_SERVER_UDP_START          20
  40. #define MSGID_SERVER_UDP_ESTAB          21
  41. #define MSGID_SERVER_UDP_END            22
  42. #define MSGID_SERVER_UDP_AUTH           23
  43.  
  44. #define MSGID_SERVER_PT_START           24
  45. #define MSGID_SERVER_PT_ESTAB           25
  46. #define MSGID_SERVER_PT_END             26
  47. #define MSGID_SERVER_PT_AUTH            27
  48.  
  49. #endif
  50.